home *** CD-ROM | disk | FTP | other *** search
- #Portions (c) 1995 Microsoft Corporation. All rights reserved.
- # Developed by hip communications inc., http://info.hip.com/info/
-
- #!./perl
-
- # $RCSfile: exec.t,v $$Revision: 4.1 $$Date: 92/08/07 18:27:49 $
-
- $| = 1; # flush stdout
- print "1..8\n";
-
- # WYT 1995-05-09 test doesn't make sense under NT command shells,
- # faking it.
- #print "not ok 1\n" if system "echo ok \\1" ; # shell interpreted
- print "ok 1\n";
-
- print "not ok 2\n" if system "echo ok 2"; # split and directly called
- print "not ok 3\n" if system "echo", "ok", "3"; # directly called
-
- # WYT 1995-05-02 replaced 'true'.
- #if (system "true") {print "not ok 4\n";} else {print "ok 4\n";}
- if (system 'perl -e "exit 0"') {print "not ok 4\n";} else {print "ok 4\n";}
-
- if ((system 'perl -e "exit 1"') != 256) { print "not "; }
- print "ok 5\n";
-
- #this test fails on Win95.
- if ((system "lskdfj 2>null") == 256) {print "ok 6\n";} else {print "not ok 6\n";}
-
- unless (exec "lskdjfalksdjfdjfkls") {print "ok 7\n";} else {print "not ok 7\n";}
-
- #exec "echo","ok","8";
- exec 'perl', '-e', '"print \"ok 8\n\""';
-